home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 13
/
Aminet 13 - August 1996.iso
/
Aminet
/
mus
/
play
/
DeliTracker225.lha
/
DeliTracker_II
/
Files
/
arexx.lzx
/
Arexx
/
dt_songend.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
2016-02-11
|
217b
|
19 lines
/* DeliTracker - toggles songend */
address 'DELITRACKER'
options results
status G end
if result == "no" then do
SongEnd yes
say "Songend is now on..."
end
else do
SongEnd no
say "Songend is now off..."
end